From: Andreas Schwab Date: Fri, 24 Jan 2003 19:15:05 +0000 (+0000) Subject: (Fminibuffer_message): Verify type of parameter. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~28632 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=a05912a7739dbff5f8bdc090fdbaf6e4c8529a5e;p=emacs.git (Fminibuffer_message): Verify type of parameter. --- diff --git a/src/minibuf.c b/src/minibuf.c index 160b36188e7..ff4c21c3f03 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -1,6 +1,6 @@ /* Minibuffer input and completion. Copyright (C) 1985, 1986, 1993, 1994, 1995, 1996, 1997, 1998, 1999, - 2000, 2001 Free Software Foundation, Inc. + 2000, 2001, 2003 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -2431,6 +2431,7 @@ or until the next input event arrives, whichever comes first. */) (string) Lisp_Object string; { + CHECK_STRING (string); temp_echo_area_glyphs (SDATA (string)); return Qnil; }